Change \u007F to \x7F, as the former gives error in the preprocessor
Problem reported by BraylaSana in #107.
This commit is contained in:
parent
f957c39745
commit
ffb4f73550
4 changed files with 4 additions and 4 deletions
|
@ -42,7 +42,7 @@ integer listen_handle;
|
||||||
integer number_per_page = 9;
|
integer number_per_page = 9;
|
||||||
integer menu_pages;
|
integer menu_pages;
|
||||||
string last_text;
|
string last_text;
|
||||||
string SEP = "<22>"; // OSS::string SEP = "\u007F";
|
string SEP = "<22>"; // OSS::string SEP = "\x7F";
|
||||||
|
|
||||||
integer pass_security(key id)
|
integer pass_security(key id)
|
||||||
{
|
{
|
||||||
|
|
|
@ -48,7 +48,7 @@ list chosen_animations;
|
||||||
string cache;
|
string cache;
|
||||||
string webkey;
|
string webkey;
|
||||||
integer webcount;
|
integer webcount;
|
||||||
string SEP = "<22>"; // OSS::string SEP = "\u007F";
|
string SEP = "<22>"; // OSS::string SEP = "\x7F";
|
||||||
|
|
||||||
string FormatFloat(float f, integer num_decimals)
|
string FormatFloat(float f, integer num_decimals)
|
||||||
{
|
{
|
||||||
|
|
|
@ -84,7 +84,7 @@ string BRAND;
|
||||||
string onSit;
|
string onSit;
|
||||||
integer speed_index;
|
integer speed_index;
|
||||||
integer verbose = 0;
|
integer verbose = 0;
|
||||||
string SEP = "<22>"; // OSS::string SEP = "\u007F";
|
string SEP = "<22>"; // OSS::string SEP = "\x7F";
|
||||||
|
|
||||||
Out(integer level, string out)
|
Out(integer level, string out)
|
||||||
{
|
{
|
||||||
|
|
|
@ -50,7 +50,7 @@ string RLVDesignations;
|
||||||
string onSit;
|
string onSit;
|
||||||
integer speed_index;
|
integer speed_index;
|
||||||
integer verbose = 0;
|
integer verbose = 0;
|
||||||
string SEP = "<22>"; // OSS::string SEP = "\u007F";
|
string SEP = "<22>"; // OSS::string SEP = "\x7F";
|
||||||
|
|
||||||
Out(integer level, string out)
|
Out(integer level, string out)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue