Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Should compile now (fixed typos(?))
- Loading branch information
Showing
with
6 additions
and
3 deletions.
-
+5
−2
src/power/beos/SDL_syspower.c
-
+1
−1
src/thread/beos/SDL_systhread.c
|
@@ -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? */ |
|
|
} |
|
@@ -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 */ |
|
|
} |
|
|
} |
|
|
|
|
|
|
@@ -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; |
|
|
|
|
|