Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Should compile now (fixed typos(?))
Browse files Browse the repository at this point in the history
  • Loading branch information
antifinidictor committed Jul 14, 2011
1 parent dadf030 commit b0702d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/power/beos/SDL_syspower.c
Expand Up @@ -50,7 +50,8 @@ SDL_GetPowerInfo_BeOS(SDL_PowerState * state, int *seconds, int *percent)
uint8 battery_flags;
uint8 battery_life;
uint32 battery_time;

int rc; /* FIXME: This was undefined before; not sure what type it is */

if (fd == -1) {
return SDL_FALSE; /* maybe some other method will work? */
}
Expand All @@ -77,7 +78,9 @@ SDL_GetPowerInfo_BeOS(SDL_PowerState * state, int *seconds, int *percent)
if (battery_status == 0xFF) {
battery_flags = 0xFF;
} else {
battery_flags = (1 << status.battery_status);
battery_flags = (1 << battery_status); /* FIXME: Used to be
status.battery_status,
not sure why */
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/thread/beos/SDL_systhread.c
Expand Up @@ -90,7 +90,7 @@ SDL_ThreadID(void)
}

int
SDL_SYS_SetThreadPriority(SDL_Thread * thread, SDL_ThreadPriority priority)
SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority)
{
int32 value;

Expand Down

0 comments on commit b0702d6

Please sign in to comment.