Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-14Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlHEADcoolgirlAutomerge Bot
2022-10-13Upgraded Qt/SDL win64 build dependencies to use SDL-2.24.1 and ffmpeg-5.1.2harry
2022-10-12Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-10-11Undo packaging of LUA DLLs for Qt Win64 GUI. Static lib seems to be more stable.harry
2022-10-11Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-10-10Package lua DLLs and auxlib.lua into Qt win64 zip for IUP functionality.harry
2022-10-10For Qt GUI, added option to use palette background color as video background ↵harry
color. This option can be accessed from via main menu -> option submenu.
2022-10-10Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-10-10Fix for Qt GUI OpenGL blending parameters.harry
2022-10-09Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-10-08For Qt GUI, added logic to prevent controller buttons that are bound to the ↵harry
keyboard from being active when family keyboard is enabled. Controller buttons that are mapped to physical gamepad or joystick are unaffected. For issue #572.
2022-10-02Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-10-02Updated download links for interim auto builds for new interim-build ↵mjbudd77
pre-release setup (uploaded from appveyor using github release deployment)
2022-10-02Updated access token.mjbudd77
2022-10-01Added appveyor github release functionality. Master auto builds are now ↵mjbudd77
uploaded to a rolling interim-build pre-release. Release tag builds will upload official release builds from appveyor automatically.
2022-09-27Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-09-26how to find newer old releasesBrad Smith
2022-09-11Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-09-10fix initialization of xdbuf and xdbackbufzeromus
2022-09-03Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-09-02For Qt GUI, added code to update debugger window ASM view when RAM or ROM ↵harry
edits are made from the hex editor. Fixes #508.
2022-08-29Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-29winport - apply ROM file pasting as a single undoable action using the ↵zeromus
multi-byte capability already in ApplyPatch. Fixes #394
2022-08-28fix a bug in applying some IPS fileszeromus
2022-08-28winport - support loading ips files on top of already loaded roms. I guess ↵zeromus
this could be factored to an FCEUI_TestFileIsPatch and an FCEUI_ReloadWithPatch?? well, that's for whoever does this on other platforms to do.
2022-08-28minimum framework to support loading ips files on top of already loaded romszeromus
2022-08-28ok, I realized we need to realloc buffers allocated by FCEU_malloc (why ↵zeromus
didn't I guess that..) which makes the fact that they're aligned be horrible. so I added FCEU_amalloc and FCEU_afree instead to do aligned allocs and frees.
2022-08-25Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-24proper deemph handling for win32 aviout. used ↵zeromus
57ec344b1fffd263c64b94cb4a87831a69b84a8c from 7 years ago as a reference (when the png writing was fixed). fixes #429
2022-08-24ModernDeemphColorMap const argszeromus
2022-08-24add new function FCEU_abort() for calling abort() with a message; use it ↵zeromus
when memory allocation fails instead of exit()
2022-08-24don't doubly memzero new allocationszeromus
2022-08-24fix the size parameter of newly-introduced aligned_alloc call to be properly ↵zeromus
aligned (as the api requires)
2022-08-24Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-24For Qt GUI added separate hot keys for soft and hard reset functions. ↵harry
Changed soft reset to be default Ctrl+R and hard reset to Ctrl+Shift+R.
2022-08-24Fix for unix build, aligned_free does not exist in unix should use plain ↵harry
free instead.
2022-08-23change how memory is allocated to clean up a lot of messed up junk (mainly ↵zeromus
strange alignment adjustments which didnt completely make sense and frees which didnt match the allocation function that was used). In case there are problems on other platforms (a few seems probable), here's the idea 1. Get rid of all manual alignment adjustments 2. use FCEU_malloc or malloc, as you see fit 3. use FCEU_free (or FCEU_gfree) if you use FCEU_malloc or FCEU_gmalloc. There's no real reason to need FCEU_gfree; this rule might be eliminated in the future (at which time FCEU_gfree will be removed) 4. If you need more alignment, increase it in FCEU_malloc. It's unlikely more alignment will ever be needed. On windows, since the FCEU_*malloc functions now use aligned_alloc, we will catch instances where free() is used to free them (which happens frequently). allocates and frees should be matched. fix the free call if you ever observe this happening. also 5. In general, remove crufty error handling for allocation failures. This just gunks up the code. If allocation fails, the application terminates.
2022-08-23newppu - process grayscale (and maybe deemph, not sure) on a per-pixel basis ↵zeromus
to fix the FF1 polygon effect (fixes #529)
2022-08-23Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-22Added keyboard state feedback to lua input.get() function for Qt GUI. ↵harry
Returned key codes are slightly different but at least it does something. Issue #536.
2022-08-22Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-21winport - fix prefix checking on memwatch addresses (fixes #496)zeromus
2022-08-21winport - change memwatch addresses to support lower case (partial revert of ↵zeromus
f0396ef980a8a72d39fd5541c2d04ba497162915)
2022-08-21winport - change input filter functions to take an index so they can search ↵zeromus
for a prefix (at index 0 perhaps) and use it on the memwatch. it's better to do these things based on strings and not chars but that's just how we have it setup for now
2022-08-21winport: tidy edit control sanitizationzeromus
2022-08-21Cheats config improvements for Qt GUI. Added global cheat enable/disable ↵harry
hotkey functionality. Added code to raise and set focus on cheat dialog when attempting to open it when it is already opened. Add code to update/refresh cheat dialog when loading a new ROM.
2022-08-21fix compile errors on linux, probablyzeromus
2022-08-21Merge branch 'master' of https://github.com/TASVideos/fceux into coolgirlAutomerge Bot
2022-08-21add a hotkey to disable active cheats (windows port only, but adding ↵zeromus
elsewhere would be easy now). fixes #504
2022-08-20Minor fixes for warnings found by gcc undefined behavior sanitizer.harry