summaryrefslogtreecommitdiffstats
path: root/src/fakerw
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-11-18 10:32:18 +0100
committeraap <aap@papnet.eu>2020-11-18 10:32:18 +0100
commit8c70c2a136d6412e27550c1c2584d972f9d9812a (patch)
tree0776cacdebdfe418bb4712836cd72d2c9fb5c837 /src/fakerw
parentMerge pull request #821 from aap/miami (diff)
downloadre3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar.gz
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar.bz2
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar.lz
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar.xz
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.tar.zst
re3-8c70c2a136d6412e27550c1c2584d972f9d9812a.zip
Diffstat (limited to 'src/fakerw')
-rw-r--r--src/fakerw/fake.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/fakerw/fake.cpp b/src/fakerw/fake.cpp
index 5d53605d..eb5551f9 100644
--- a/src/fakerw/fake.cpp
+++ b/src/fakerw/fake.cpp
@@ -936,16 +936,3 @@ RtCharset *RtCharsetSetColors(RtCharset * charSet, const RwRGBA * foreGround,
RtCharset *RtCharsetGetDesc(RtCharset * charset, RtCharsetDesc * desc) { *desc = charset->desc; return charset; }
RtCharset *RtCharsetCreate(const RwRGBA * foreGround, const RwRGBA * backGround) { return Charset::create(foreGround, backGround); }
RwBool RtCharsetDestroy(RtCharset * charSet) { charSet->destroy(); return true; }
-
-
-
-// fake shit
-RwInt32 _rwD3D8FindCorrectRasterFormat(RwRasterType type, RwInt32 flags)
-{
-#ifdef RW_GL3
- if(flags & (rwRASTERFORMATPAL8 | rwRASTERFORMAT8888))
- return 'NOPE';
- return 'YUP';
-#endif
- return flags & 0xF00;
-}