summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-17Add sync_source to default.cfg and the Nuklear UIMichael Pavone
2018-04-17Audio DRC seems to be working pretty well now. Removed debug printfsMichael Pavone
2018-04-17Moved resample rate adjustment to after frame flip rather than in audio ↵Michael Pavone
callback as it makes more sense there. Needs adjustment to avoid audible pitch changes
2018-04-14Audio DRC now sounds good in both NTSC and PAL, just need to adjust ↵Michael Pavone
constants to minimize latency without leading to dropouts
2018-04-14Mostly working dynamic rate control. Needs some tweaking, especially for PALMichael Pavone
2018-04-13WIP dynamic rate controlMichael Pavone
2018-04-11Fix regression in right audio channelMichael Pavone
2018-04-08Fix timing for Z80 JP cc, nn instructionMichael Pavone
2018-04-05Added code to fallback to Yosemite or pre-Yosemite system font in case ↵Michael Pavone
current system font can't be found or is in an unusable format. San Francisco font used on current OS X versions is in a .otf file whih presumably means it has CFF outlines that stb_truetype can't use.
2018-04-04Fix silly bug in handling of Mac Roman font names. Make Mac font search more ↵Michael Pavone
exhaustive if the faster prefix check fails. Added a bunch of debug printfs in case those aren't sufficient to get things working on other machines
2018-04-02Fix vgmplayMichael Pavone
2018-04-02Fix Z80 bank access for $800000-$A00000 region for 10M flat mapped ROMsMichael Pavone
2018-03-30Randomize soft reset timing and fix silly bug that was accidentally clearing ↵Michael Pavone
IO state on soft reset
2018-03-30More audio refactoring in preparation for allowing proper sync to video with ↵Michael Pavone
dynamic audio rate control
2018-03-29Allow double click to open ROM in file browserMichael Pavone
2018-03-29Added vsync to video settingsMichael Pavone
2018-03-28Add support for float32 format audio samplesMichael Pavone
2018-03-28Small cleanup to audio interface between emulation code and renderer backendMichael Pavone
2018-03-26There will be no 0.5.2 at this pointMichael Pavone
2018-03-26Allow numpad keys to be mappedMichael Pavone
2018-03-26Allow MegaWiFi support to be toggled in config file. Defaults to off due to ↵Michael Pavone
security concerns
2018-03-26Remove some debug print stuff from font_win.cMichael Pavone
2018-03-26Get Windows build working again. MegaWiFi code probably needs more work ↵Michael Pavone
before it will actually work on Windows, but at least it doesn't break the build now
2018-03-26Add back button to Key binding view and add a window and back button to ↵Michael Pavone
empty controller view so you can always get back to the main menu
2018-03-25Fix use after free in get_extension_listMichael Pavone
2018-03-25Fix no-default targetsMichael Pavone
2018-03-25Merged nuklear_ui into defaultMichael Pavone
2018-03-25Make sure config directory exists before trying to save config fileMichael Pavone
--HG-- branch : nuklear_ui
2018-03-25Remove unneeded duplicate typedefMichael Pavone
--HG-- branch : nuklear_ui
2018-03-25Don't try to use GLES specific stuff unless we're actualy on a GLES platformMichael Pavone
--HG-- branch : nuklear_ui
2018-03-25Added OSX implementation of default_fontMichael Pavone
--HG-- branch : nuklear_ui
2018-03-25Fix memory leak in edge case of font_winMichael Pavone
--HG-- branch : nuklear_ui
2018-03-25MSG_NOSIGNAL doesn't exist on all platformsMichael Pavone
--HG-- branch : nuklear_ui
2018-03-24MergeMichael Pavone
--HG-- branch : nuklear_ui
2018-03-24Updated default config to reflect gz/zip/png supportMichael Pavone
2018-03-24Added png screenshot supportMichael Pavone
2018-03-24Add support for loading ROMs from zip filesMichael Pavone
2018-03-23Added support for reading gzipped ROMsMichael Pavone
2018-03-23Updated fibonacci benchmark code to work with current test harnessMichael Pavone
2018-03-13Set glClearColor back to blackMichael Pavone
--HG-- branch : nuklear_ui
2018-03-06Added support for TTC and dfont format true type fonts. More robust font ↵Michael Pavone
selection on Windows --HG-- branch : nuklear_ui
2018-02-07Filled in About viewMichael Pavone
--HG-- branch : nuklear_ui
2018-02-07Fix unguarged windows.h includeMichael Pavone
--HG-- branch : nuklear_ui
2018-02-07Fix Windows build, added Windows default_font_path implementationMichael Pavone
--HG-- branch : nuklear_ui
2018-02-06Fix const correctness for path_extensionMichael Pavone
--HG-- branch : nuklear_ui
2018-02-06Key binding menu is now functionalMichael Pavone
--HG-- branch : nuklear_ui
2018-02-05More fleshed out keyboard bindings viewMichael Pavone
--HG-- branch : nuklear_ui
2018-02-02Initial work on keyboard binding settings viewMichael Pavone
--HG-- branch : nuklear_ui
2018-01-31Made the NOR flash emulation a bit more flexible, but not yet flexible ↵Michael Pavone
enough to properly support the flash chip in the MegaWiFi cart
2018-01-31Limit received LSD packets to 1440 bytes to match expectations of wflash ↵Michael Pavone
code. Use MSG_NOSIGNAL to avoid getting killed with SIGPIPE