(Xbox 1) Rmenu build fix

This commit is contained in:
twinaphex 2012-08-04 02:44:02 +02:00
parent 17780cb5a8
commit 1cb896d0b6
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ void xfonts_render_msg_place(void *data, float x, float y, float scale, const ch
d3d->debug_font->TextOut(d3d->pFrontBuffer, str, (unsigned)-1, x, y);
d3d->debug_font->TextOut(d3d->pBackBuffer, str, (unsigned)-1, x, y);
xfonts_render_msg_post(d3d);
d3d->pFrontBuffer->Release();
d3d->pBackBuffer->Release();
}

View File

@ -18,6 +18,6 @@
#define RARCH_XDK1_FONTS_H
void xfonts_deinit_font(void);
void xfonts_render_msg_place(xdk_d3d_video_t *d3d, float x, float y, float scale, const char *msg);
void xfonts_render_msg_place(void *data, float x, float y, float scale, const char *msg);
#endif