mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-07 10:10:41 +00:00
5483473da0
Notable changes: - Changes to buffer size calculations and latency calculations. Not a big update, just wanted to commit something before the year ended! git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5023 96395faa-99c1-11dd-bbfe-3dabce05a288
20 lines
468 B
Batchfile
20 lines
468 B
Batchfile
rem Use Astyle to fix style in 'C' files
|
|
cd %1%
|
|
|
|
fixlines -p *.c
|
|
fixlines -p *.cpp
|
|
fixlines -p *.cc
|
|
|
|
astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.c
|
|
astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cpp
|
|
astyle --style=ansi -c -o --convert-tabs --indent-preprocessor *.cc
|
|
del *.orig
|
|
@rem convert line terminators to Unix style LFs
|
|
fixlines -u *.c
|
|
fixlines -u *.cpp
|
|
fixlines -u *.cc
|
|
fixlines -u *.h
|
|
del *.bak
|
|
|
|
cd ..\
|