diff options
Diffstat (limited to 'include/JSystem/J2DGraph/J2DWindow.h')
| -rw-r--r-- | include/JSystem/J2DGraph/J2DWindow.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/JSystem/J2DGraph/J2DWindow.h b/include/JSystem/J2DGraph/J2DWindow.h index 47e368fe..a56ff6ab 100644 --- a/include/JSystem/J2DGraph/J2DWindow.h +++ b/include/JSystem/J2DGraph/J2DWindow.h @@ -37,7 +37,12 @@ public: void setTevMode(JUTTexture*, JUtility::TColor, JUtility::TColor); void getBlack() const {} - void getContentsColor(TContentsColor&) const {} + void getContentsColor(TContentsColor& param_0) const { + param_0.mTL = mColorTL; + param_0.mTR = mColorTR; + param_0.mBL = mColorBL; + param_0.mBR = mColorBR; + } void getWhite() const {} void setBlack(JUtility::TColor) {} void setContentsColor(TContentsColor) {} |
