Skip to content

Commit

Permalink
Fixed names in implementation for PSP.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jan 31, 2015
1 parent 7815393 commit 7384f14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/audio/psp/SDL_pspaudio.h
Expand Up @@ -24,7 +24,7 @@

#include "../SDL_sysaudio.h"

/* Hidden "this" pointer for the video functions */
/* Hidden "this" pointer for the audio functions */
#define _THIS SDL_AudioDevice *this

#define NUM_BUFFERS 2
Expand Down
4 changes: 2 additions & 2 deletions src/video/psp/SDL_pspvideo.c
Expand Up @@ -66,7 +66,7 @@ PSP_Create()
SDL_GLDriverData *gldata;
int status;

/* Check if pandora could be initialized */
/* Check if PSP could be initialized */
status = PSP_Available();
if (status == 0) {
/* PSP could not be used */
Expand All @@ -80,7 +80,7 @@ PSP_Create()
return NULL;
}

/* Initialize internal Pandora specific data */
/* Initialize internal PSP specific data */
phdata = (SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
if (phdata == NULL) {
SDL_OutOfMemory();
Expand Down
6 changes: 3 additions & 3 deletions src/video/psp/SDL_pspvideo.h
Expand Up @@ -19,8 +19,8 @@
3. This notice may not be removed or altered from any source distribution.
*/

#ifndef __SDL_PANDORA_H__
#define __SDL_PANDORA_H__
#ifndef _SDL_pspvideo_h
#define _SDL_pspvideo_h

#include <GLES/egl.h>

Expand Down Expand Up @@ -97,6 +97,6 @@ void PSP_ShowScreenKeyboard(_THIS, SDL_Window *window);
void PSP_HideScreenKeyboard(_THIS, SDL_Window *window);
SDL_bool PSP_IsScreenKeyboardShown(_THIS, SDL_Window *window);

#endif /* __SDL_PANDORA_H__ */
#endif /* _SDL_pspvideo_h */

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit 7384f14

Please sign in to comment.