8000 Tags · decademoon/visualboyadvance-m · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: decademoon/visualboyadvance-m

Tags

v2.0.1

Toggle v2.0.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
refactor/cleanup GitTagVersion.cmake

Run just one `git tag` command instead of two (with tags and refs) and
break it into the form [tag0, ref0, tag1, ref1, ...]. Iterate over the
list with two counters for tag and ref.

throttle

Toggle throttle's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
cmake: use add_compile_options for ssp-buffer-size

In 82c8a1e I made "--param ssp-buffer-size=4" one argument instead of
two because when added to CMAKE_REQUIRED_LIBRARIES the ssp-buffer-size=4
part was being recognized as a library, breaking the compile tests.

This broke the build on mac, which I fixed in 915e2d1 by using ssp
flags for gcc only and not clang.

Now apparently it is breaking mxe, so instead of adding this particular
parameter to the MY_C_FLAGS variable which is then added to
CMAKE_REQUIRED_* variables for compile tests, add it directly via
ADD_COMPILE_OPTIONS().

This should hopefully resolve any remaining issues with this compiler
flag.

waylandplus

Toggle waylandplus's commit message
Fix case where buffer is filled to capacity and becoming empty. There…

… always needs to be an extra entry as a separator between the write and the read.

Keyboardfixes

Toggle Keyboardfixes's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix game freezing on kbd input visualboyadvance-m#54

Apparently in some configurations, holding a key on the keyboard makes
Wx stop processing Idle events, so the emulator does not run until the
key is released, freezing the game and ignoring the key.

Hopefully fix this by calling wxWakeUpIdle() from OnKeyDown() and
OnKeyUp().

Other Misc. Improvements:

- refactor process_key_press() to only return true if the system is in a
  pressed key state on key presses or a game key was released on
  releases and always true on double releases.

- call ev.StopPropagation() from OnKey* events for game keys, this may
  not actually do anything, but just in case.

- remove static OnKeyUp and OnKeyDown events from GameArea, these are
  connected to the DrawingPanel dynamically now.

- remove the dynamic_cast<>s from PaintEv/EraseBackground/OnSize event
  forwarders, since there is already a panel member to use.

TODO:

The state returned by process_key_press() is still not entirely correct,
if a joystick button is pressed, it will return true for a non-game
keyboard press, and it needs to return the correct state for double
releases.

Beta-3

Toggle Beta-3's commit message
Fixed compiling without sfml.

v2.0.0

Toggle v2.0.0's commit message
Merge pull request visualboyadvance-m#19 from jayands/master

Fix for T2

VBA-M_Beta_2

Toggle VBA-M_Beta_2's commit message

0