-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ShyVortex/master
Update icons and strings
- Loading branch information
Showing
62 changed files
with
9,546 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[Desktop Entry] | ||
Version=1.0 | ||
Type=Application | ||
Name=Citra | ||
Name=Lime | ||
GenericName=3DS Emulator | ||
GenericName[fr]=Émulateur 3DS | ||
Comment=Nintendo 3DS video game console emulator | ||
Comment[fr]=Émulateur de console de jeu Nintendo 3DS | ||
Icon=citra | ||
Icon=lime | ||
TryExec=citra | ||
Exec=citra %f | ||
Categories=Game;Emulator; | ||
MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi; | ||
MimeType=application/x-lme-3dsx;application/x-lme-cci;application/x-lme-cia;application/x-lme-cxi; | ||
Keywords=3DS;Nintendo; | ||
PrefersNonDefaultGPU=true |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* Default visibility */ | ||
#if defined(__GNUC__) || defined(__clang__) | ||
#define DEFAULT_VISIBILITY __attribute__((visibility("default"))) | ||
#elif defined(_MSC_VER) | ||
#define DEFAULT_VISIBILITY __declspec(dllexport) | ||
#endif | ||
|
||
/* Start with debug message logging enabled */ | ||
#undef ENABLE_DEBUG_LOGGING | ||
|
||
/* Message logging */ | ||
#undef ENABLE_LOGGING | ||
|
||
/* Define to 1 if you have the <asm/types.h> header file. */ | ||
#define HAVE_ASM_TYPES_H 1 | ||
|
||
/* Define to 1 if you have the `gettimeofday' function. */ | ||
#define HAVE_GETTIMEOFDAY 1 | ||
|
||
/* Define to 1 if you have the `udev' library (-ludev). */ | ||
/* #undef HAVE_LIBUDEV */ | ||
|
||
/* Define to 1 if you have the <linux/filter.h> header file. */ | ||
#define HAVE_LINUX_FILTER_H 1 | ||
|
||
/* Define to 1 if you have the <linux/netlink.h> header file. */ | ||
#define HAVE_LINUX_NETLINK_H 1 | ||
|
||
/* Define to 1 if you have eventfd support. */ | ||
#define HAVE_EVENTFD 1 | ||
|
||
/* Define to 1 if you have timerfd support. */ | ||
#define HAVE_TIMERFD 1 | ||
|
||
/* Define to 1 if you have the <signal.h> header file. */ | ||
#define HAVE_SIGNAL_H 1 | ||
|
||
/* Define to 1 if you have the <strings.h> header file. */ | ||
#define HAVE_STRINGS_H 1 | ||
|
||
/* Define to 1 if the system has the type `struct timespec'. */ | ||
#define HAVE_STRUCT_TIMESPEC 1 | ||
|
||
/* syslog() function available */ | ||
#define HAVE_SYSLOG_FUNC 1 | ||
|
||
/* Define to 1 if you have the <syslog.h> header file. */ | ||
#define HAVE_SYSLOG_H 1 | ||
|
||
/* Define to 1 if you have the <sys/socket.h> header file. */ | ||
#define HAVE_SYS_SOCKET_H 1 | ||
|
||
/* Define to 1 if you have the <sys/time.h> header file. */ | ||
#define HAVE_SYS_TIME_H 1 | ||
|
||
/* Define to 1 if you have the <sys/types.h> header file. */ | ||
#define HAVE_SYS_TYPES_H 1 | ||
|
||
/* Define to 1 if you have the 'clock_gettime' function. */ | ||
#define HAVE_CLOCK_GETTIME 1 | ||
|
||
/* Darwin backend */ | ||
/* #undef OS_DARWIN */ | ||
|
||
/* Linux backend */ | ||
#define OS_LINUX 1 | ||
|
||
/* NetBSD backend */ | ||
/* #undef OS_NETBSD */ | ||
|
||
/* OpenBSD backend */ | ||
/* #undef OS_OPENBSD */ | ||
|
||
/* Windows backend */ | ||
/* #undef OS_WINDOWS */ | ||
|
||
/* Use POSIX Platform */ | ||
#define PLATFORM_POSIX | ||
|
||
/* Use Windows Platform */ | ||
/* #undef PLATFORM_WINDOWS */ | ||
|
||
/* Enable output to system log */ | ||
#define USE_SYSTEM_LOGGING_FACILITY 1 | ||
|
||
/* Use udev for device enumeration/hotplug */ | ||
/* #undef USE_UDEV */ | ||
|
||
/* Use GNU extensions */ | ||
#define _GNU_SOURCE | ||
|
||
/* Oldest Windows version supported */ | ||
#define WINVER 0x0501 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.