mirror of
https://github.com/UberGames/GtkRadiant.git
synced 2024-11-23 12:22:19 +00:00
64fe6940f0
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/branches/ZeroRadiant@190 8a3a26a2-13c4-0310-b231-cf6edde360e5
17 lines
No EOL
268 B
Perl
17 lines
No EOL
268 B
Perl
#!perl
|
|
rename("brush.c", "brush.c.old");
|
|
open(FILE, "brush.c.old");
|
|
open(OFILE, ">brush.c");
|
|
while(<FILE>)
|
|
{
|
|
if($. != 150)
|
|
{
|
|
print OFILE;
|
|
next;
|
|
}
|
|
s/Sys_Printf \(/Sys_FPrintf \(SYS_VRB,/;
|
|
s/Sys_Printf\(/Sys_FPrintf \(SYS_VRB,/;
|
|
print OFILE;
|
|
}
|
|
close(OFILE);
|
|
close(FILE); |