Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JANITORIAL: Fix typos in tools #78

Closed
wants to merge 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f953c27
JANITORIAL: Fix availiable typo in p12explore.py
raziel- Sep 7, 2024
b83c2a5
JANITORIAL: Fix compability typo in scummsys.h
raziel- Sep 7, 2024
d939372
JANITORIAL: Fix continous typo in main.cpp
raziel- Sep 7, 2024
9856813
JANITORIAL: Fix convertion typo in convert_dxa.bat
raziel- Sep 7, 2024
82bcea2
JANITORIAL: Fix excercise typo in util.h
raziel- Sep 7, 2024
6c67523
JANITORIAL: Fix between typo in compress_sci.cpp
raziel- Sep 7, 2024
ae578f0
JANITORIAL: Fix infomation typo in pack_prince.cpp
raziel- Sep 7, 2024
4e08caf
JANITORIAL: Fix interchangably typo in overview.tex
raziel- Sep 7, 2024
3eb4c58
JANITORIAL: Fix lenght typos in patchex.cpp
raziel- Sep 7, 2024
0eb0ef6
JANITORIAL: Fix lenght typos in ResidualVM-Patch.txt
raziel- Sep 7, 2024
ab0a0f7
JANITORIAL: Fix managment typo in str.h
raziel- Sep 7, 2024
f7e8f0b
JANITORIAL: Fix occurence typo in todo.tex
raziel- Sep 7, 2024
e3a7c8f
JANITORIAL: Fix proces typo in version.cpp
raziel- Sep 7, 2024
93b0eca
JANITORIAL: Fix refered typo in scummvm-tools.nsi
raziel- Sep 7, 2024
6dec451
JANITORIAL: Fix refered typo in scummvm-tools.nsi.in
raziel- Sep 7, 2024
6148bc5
JANITORIAL: Fix refered typo in engine.py
raziel- Sep 7, 2024
65f3e27
JANITORIAL: Fix refering typo in ptr.h
raziel- Sep 7, 2024
19bf3a8
JANITORIAL: Fix seeked typo in stream.cpp
raziel- Sep 7, 2024
081b966
JANITORIAL: Fix seperating typo in main.h
raziel- Sep 7, 2024
75e9d43
JANITORIAL: Fix substract typo in create_sjisfnt.cpp
raziel- Sep 7, 2024
3394f1f
JANITORIAL: Fix unkown typos in qtvr.hexpat
raziel- Sep 7, 2024
47b3db2
JANITORIAL: Fix dosen't typo in lmem.cpp
raziel- Sep 7, 2024
b38bd74
JANITORIAL: Fix thats typo in compress_sci.cpp
raziel- Sep 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
JANITORIAL: Fix thats typo in compress_sci.cpp
  • Loading branch information
raziel- authored Sep 7, 2024
commit b38bd74719c0d2fbc2582ccd2cb9c33a82c7f248
2 changes: 1 addition & 1 deletion engines/sci/compress_sci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ SciResourceDataType CompressSci::detectData(byte *header, bool compressMode) {
}
byte buffer[20];
memcpy(&buffer, header, 6);
// Fixup for pharkas resource.sfx, several WAVE files contain a size thats not right (-1 byte)
// Fixup for pharkas resource.sfx, several WAVE files contain a size that's not right (-1 byte)
int offset = 0;
if (memcmp(buffer + 1, "RIFF", 4) == 0) {
offset = 5;
Expand Down
Loading