| Age | Commit message (Collapse) | Author | 
 | 
cfg: add config block 0x00090000
 | 
 | 
Rework the code of err:f service!
 | 
 | 
 | 
 | 
 | 
 | 
GPU/CiTrace: Avoid calling GetTextures() when not necessary.
 | 
 | 
Kernel/Events: Log an error when trying to create Pulse events and timers
 | 
 | 
APT/Applets: Renamed the members of the SignalType enum.
 | 
 | 
 | 
 | 
Minor formatting change
 | 
 | 
 | 
 | 
Related to #1904
 | 
 | 
Names now make sense and match 3dbrew.
 | 
 | 
 | 
 | 
Fix mingw compilation support
 | 
 | 
Support additional screen layouts.
 | 
 | 
 | 
 | 
And other minor style changes
 | 
 | 
 | 
 | 
Also minor style changes
 | 
 | 
 | 
 | 
Make small screen stay at 1x, and large screen maintain its aspect ratio.
 | 
 | 
Allows users to choose a single screen layout or a large screen layout.
Adds a configuration option to change the prominent screen.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
NWM: stub Initialize with an error
 | 
 | 
Fix build on DragonFly and FreeBSD
 | 
 | 
 | 
 | 
 | 
 | 
src/core/hle/service/soc_u.cpp:107:6: error: 'ENODATA' was not declared in this scope
     {ENODATA, 43},
      ^
src/core/hle/service/soc_u.cpp:117:6: error: 'ENOSR' was not declared in this scope
     {ENOSR, 53},
      ^
src/core/hle/service/soc_u.cpp:118:6: error: 'ENOSTR' was not declared in this scope
     {ENOSTR, 54},
      ^
src/core/hle/service/soc_u.cpp:139:6: error: 'ETIME' was not declared in this scope
     {ETIME, 75},
      ^
 | 
 | 
 | 
 | 
 | 
 | 
In file included from src/common/x64/cpu_detect.cpp:16:
/usr/include/machine/cpufunc.h:66:17: error: unknown type name 'u_int'
static __inline u_int
                ^
/usr/include/machine/cpufunc.h:67:6: error: unknown type name 'u_int'
bsfl(u_int mask)
     ^
/usr/include/machine/cpufunc.h:69:2: error: unknown type name 'u_int'
        u_int   result;
        ^
/usr/include/machine/cpufunc.h:75:17: error: unknown type name 'u_long'; did you mean 'long'?
static __inline u_long
                ^
/usr/include/machine/cpufunc.h:76:6: error: unknown type name 'u_long'; did you mean 'long'?
bsfq(u_long mask)
     ^
/usr/include/machine/cpufunc.h:78:2: error: use of undeclared identifier 'u_long'; did you mean
      'long'?
        u_long  result;
        ^
[...]
 | 
 | 
Most modern Unix environments use 64-bit off_t by default: OpenBSD,
FreeBSD, OS X, and Linux libc implementations such as Musl.
glibc is the lone exception; it can default to 32 bits but this is
configurable by setting _FILE_OFFSET_BITS.
Avoiding the stat64()/fstat64() interfaces is desirable because they
are nonstandard and not implemented on many systems (including
OpenBSD and FreeBSD), and using 64 bits for stat()/fstat() is either
the default or trivial to set up.
 | 
 | 
src/common/file_util.cpp:79:19: error: variable has incomplete type 'struct stat64'
    struct stat64 file_info;
                  ^
src/common/file_util.cpp:79:12: note: forward declaration of 'stat64'
    struct stat64 file_info;
           ^
src/common/file_util.cpp:99:19: error: variable has incomplete type 'struct stat64'
    struct stat64 file_info;
                  ^
src/common/file_util.cpp:99:12: note: forward declaration of 'stat64'
    struct stat64 file_info;
           ^
src/common/file_util.cpp:342:19: error: variable has incomplete type 'struct stat64'
    struct stat64 buf;
                  ^
src/common/file_util.cpp:342:12: note: forward declaration of 'stat64'
    struct stat64 buf;
           ^
src/common/file_util.cpp:359:19: error: variable has incomplete type 'struct stat64'
    struct stat64 buf;
                  ^
src/common/file_util.cpp:359:12: note: forward declaration of 'stat64'
    struct stat64 buf;
           ^
4 errors generated.
 | 
 | 
src/common/thread.cpp:90:5: error: unknown type name 'cpu_set_t'; did you mean 'cpuset_t'?
    cpu_set_t cpu_set;
    ^~~~~~~~~
    cpuset_t
/usr/include/sys/_cpuset.h:48:24: note: 'cpuset_t' declared here
typedef struct _cpuset cpuset_t;
                       ^
1 error generated.
 | 
 | 
src/common/thread.cpp:123:5: error: use of undeclared identifier 'pthread_setname_np'
    pthread_setname_np(pthread_self(), szThreadName);
    ^
1 error generated.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Update the stub code of BOSS
 | 
 | 
Fix/mask crash in shader debugger in Mii Maker
 | 
 | 
 | 
 | 
Debugger: implement wait tree widget
 | 
 | 
FS: implement DeleteDirectoryRecursively
 | 
 | 
GPU: DisplayTransfer & MemoryFill cleanup and param check
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 |