aboutsummaryrefslogtreecommitdiff
path: root/redist/CNFGNullDriver.c
diff options
context:
space:
mode:
authorCharles Lohr <lohr85@gmail.com>2018-03-22 00:05:17 +0000
committerCharles Lohr <lohr85@gmail.com>2018-03-22 00:05:17 +0000
commit96d6cb357f7dbe59fdfeba73808d78fc0c0ea435 (patch)
tree39c9965dd2a4d1ee330d7dac530374d9437641a1 /redist/CNFGNullDriver.c
parentd2468fcc0bd63e163a7a0564fa37b7880e2209df (diff)
downloadlibsurvive-96d6cb357f7dbe59fdfeba73808d78fc0c0ea435.tar.gz
libsurvive-96d6cb357f7dbe59fdfeba73808d78fc0c0ea435.tar.bz2
Update rawdraw
Diffstat (limited to 'redist/CNFGNullDriver.c')
-rw-r--r--redist/CNFGNullDriver.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/redist/CNFGNullDriver.c b/redist/CNFGNullDriver.c
index c35884a..b50612c 100644
--- a/redist/CNFGNullDriver.c
+++ b/redist/CNFGNullDriver.c
@@ -23,10 +23,11 @@ void CNFGTearDown()
{
}
-void CNFGSetup( const char * WindowName, int sw, int sh )
+int CNFGSetup( const char * WindowName, int sw, int sh )
{
w = sw;
h = sh;
+ return 0;
}
void CNFGHandleInput()
@@ -38,13 +39,13 @@ void CNFGUpdateScreenWithBitmap( unsigned long * data, int w, int h )
{
}
-
#ifndef RASTERIZER
uint32_t CNFGColor( uint32_t RGB )
{
}
+#endif
void CNFGClearFrame()
{
@@ -70,5 +71,3 @@ void CNFGTackPoly( RDPoint * points, int verts )
{
}
-#endif
-