fceux/src
Matthew Budd 92ccbd8a49 Changed Qt GUI hot key logic to allow for hot key bindings to include the use of modifier keys (Shift,Alt,Ctrl) to form key sequences instead of just being limited to single key bindings. 2020-11-08 22:57:28 -05:00
..
attic Use LoadGame instead of FCEUI_LoadGame 2020-10-22 01:20:48 +02:00
boards mmc5 was making no virtually no effort to clear data on power-on, creating nondeterminisms on movie plays. I revised all that.. and it's making me think fceux fundamentally doesn't work well with this. In particular I'm not sure about the timing of the loaded save data. If we get called in the order: mapper_init, loadsavedata, mapper_power -- then we will clobber the WRAM in mapper_power (at least, the way I have it now in mmc5) which will lose the save data. save data should really be loaded AFTER a power-on command. but I don't think fceux ever through through any of this very well. well, at least this fixes my case of a deterministic fm2. 2020-10-16 13:02:06 -04:00
drivers Changed Qt GUI hot key logic to allow for hot key bindings to include the use of modifier keys (Shift,Alt,Ctrl) to form key sequences instead of just being limited to single key bindings. 2020-11-08 22:57:28 -05:00
fir migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
input LCD Zapper sensor logic should be inverted because 0: detected; 1: not detected 2020-10-09 23:26:51 +03:00
lua migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
palettes migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
utils Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
CMakeLists.txt Added Game Genie encode/decode window to Qt GUI. 2020-11-08 15:42:48 -05:00
Makefile.am Fix Linux build errors (#3) 2018-06-15 13:02:23 -04:00
SConscript Altered SCons build scripts to work with Python 3. 2019-09-10 17:05:22 -06:00
asm.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
asm.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
auxlib.lua migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
cart.cpp CHR size < 1k allows NES program to corrupt memory because VPage is 1k granularity 2020-05-02 00:20:44 -04:00
cart.h Fixed gtk window gui resizing logic. Can now resize by dragging the corners of the window with the mouse as well as through the vidio menu. 2020-05-10 23:38:36 -04:00
cheat.cpp Cheat Search: Switch of show address in Game Genie format 2020-09-06 08:20:20 +08:00
cheat.h Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
conddebug.cpp Cleaned up a few compiler and cppcheck warnings in code base. There are still quite a few more TODO. 2020-08-14 22:15:47 -04:00
conddebug.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
config.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
debug.cpp Enabled trace instruction function. Still TODO, try to make it more efficient. 2020-10-01 06:14:35 -04:00
debug.h Added initial framework for symbolic debug feature in Qt port. 2020-09-13 21:43:50 -04:00
drawing.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
drawing.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
driver.h datach barcode reader input changed a little bit control code recalculating logic. 2020-08-11 20:28:11 +03:00
emufile.cpp Fixed a few code errors identified by cppcheck static code analyzer. 2020-05-08 23:30:31 -04:00
emufile.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
emufile_types.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
fceu.cpp Input Barcode is neither supported by movie recording nor TAS, disable the menu when using them. 2020-08-31 23:27:15 +08:00
fceu.h Added movie options dialog window to Qt GUI. 2020-11-05 05:24:21 -05:00
fceulua.h zapper control from lua 2019-12-15 15:31:09 -05:00
fcoeffs.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
fds.cpp fds.cpp: new fds image handling, fixes saving issues with some games (Bubble Bobble, Super Lode Runner II, ...) 2019-12-16 00:45:14 -05:00
fds.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
file.cpp Added game pad button mapping profile logic. 2020-07-24 16:56:48 -04:00
file.h Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
filter.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
filter.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
git.h Merge branch 'master' into Issue130 2020-10-08 19:56:48 +03:00
ines-bad.h Windows 64-bit build support (#66) 2019-07-23 15:12:03 -04:00
ines-correct.h - N106 sound issue requested fix, see comments 2020-04-09 20:54:05 +03:00
ines.cpp Added ASM view cursor position label logic to Qt debug window. 2020-09-11 22:56:04 -04:00
ines.h Added ASM view cursor position label logic to Qt debug window. 2020-09-11 22:56:04 -04:00
input.cpp Merge branch 'master' into Issue130 2020-10-08 19:56:48 +03:00
input.h Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
lua-engine.cpp Changed the lua emu.loadrom function to have a string return value containing the path to the currently loaded ROM. The old function had no return value. This return value allows for the user to determine what game was loaded since the function behavior is to try to reload the last known ROM if the passed argument cannot be loaded. 2020-11-01 21:45:36 -05:00
movie.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
movie.h Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
netplay.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
netplay.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
nsf.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
nsf.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
oldmovie.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
oldmovie.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
ops.inc migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
palette.cpp First successful viewing of pattern and palatte colors on Qt PPU Viewer. 2020-10-04 09:54:51 -04:00
palette.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
ppu.cpp Name table view first successful drawing on Qt GUI. 2020-10-05 22:49:09 -04:00
ppu.h Successful initial test of Qt Code/Data Logger Window. 2020-09-28 21:23:47 -04:00
pputile.inc vrc5 extended ppu rendering simulation fix 2019-08-07 01:17:57 +03:00
sound.cpp - N106 sound issue requested fix, see comments 2020-04-09 20:54:05 +03:00
sound.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
state.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
state.h Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
types-des.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
types.h change to use vs2015 2018-04-10 23:22:39 -05:00
unif.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
unif.h preliminary, basic hookup of Family Network System base board + MMC1 cassette emulation 2020-01-16 21:33:37 +03:00
version.h fix release mode build errors 2018-04-11 01:07:27 -05:00
video.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
video.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
vsuni.cpp Cleaned up gcc compiler warning : ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings] 2020-06-19 23:58:12 -04:00
vsuni.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
wave.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
wave.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
x6502.cpp migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
x6502.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
x6502abbrev.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00
x6502struct.h migration tidying (build master from trunk) 2018-04-08 17:35:15 -05:00