diff options
| author | Strangerke | 2015-12-08 08:42:08 +0100 | 
|---|---|---|
| committer | Willem Jan Palenstijn | 2015-12-23 21:33:55 +0100 | 
| commit | 6b9264d9da41d8be08ea46076026901374d3d106 (patch) | |
| tree | b4929b0ceeaeaf6e23ddfe3bd46429f7127d12a6 /engines/lab/utils.h | |
| parent | 73eb0d2f284809d6bec2336d0647e9905368c3cd (diff) | |
| download | scummvm-rg350-6b9264d9da41d8be08ea46076026901374d3d106.tar.gz scummvm-rg350-6b9264d9da41d8be08ea46076026901374d3d106.tar.bz2 scummvm-rg350-6b9264d9da41d8be08ea46076026901374d3d106.zip | |
LAB: Refactoring the vgaUnscale code and the way it's used
Diffstat (limited to 'engines/lab/utils.h')
| -rw-r--r-- | engines/lab/utils.h | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/engines/lab/utils.h b/engines/lab/utils.h index 4fa168dd54..441473672c 100644 --- a/engines/lab/utils.h +++ b/engines/lab/utils.h @@ -52,8 +52,7 @@ public:  	int16 vgaScaleX(int16 x);  	int16 vgaScaleY(int16 y);  	uint16 svgaCord(uint16 cord); -	int vgaUnscaleX(int x); -	int vgaUnscaleY(int y); +	Common::Point vgaUnscale(Common::Point pos);  	void unDiff(byte *newBuf, byte *oldBuf, byte *diffData, uint16 bytesperrow, bool isV);  	void runLengthDecode(byte *dest, byte *source);  	void VRunLengthDecode(byte *dest, byte *source, uint16 bytesPerRow); | 
