Skip to content

Commit

Permalink
[#191] fixed in c64_class.cpp char --> signed char
Browse files Browse the repository at this point in the history
char != signed char
  • Loading branch information
ThKattanek committed Mar 31, 2020
1 parent 1cbd9cb commit 9cca715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c64_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ void C64Class::SetFullscreenAspectRatio(bool enable)
void C64Class::AnalyzeSDLEvent(SDL_Event *event)
{
static bool joy_center_flag = true;
static char joy_axis_tbl[5] = {1,1,0,0,-1};
static signed char joy_axis_tbl[5] = {1,1,0,0,-1};

SDL_Keymod keymod;

Expand Down

0 comments on commit 9cca715

Please sign in to comment.