mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 09:19:18 +02:00
merged upstream changes
This commit is contained in:
@@ -112,7 +112,7 @@ bool iSetFlag(int &Flag, int Value)
|
||||
if ((Flag & Value) == 0)
|
||||
{
|
||||
Flag |= Value;
|
||||
return true; // true, gdy by³o wczeœniej 0 i zosta³o ustawione
|
||||
return true; // true, gdy było wcześniej 0 i zostało ustawione
|
||||
}
|
||||
}
|
||||
else if (Value < 0)
|
||||
@@ -121,7 +121,7 @@ bool iSetFlag(int &Flag, int Value)
|
||||
if ((Flag & Value) == Value)
|
||||
{
|
||||
Flag &= ~Value; // Value jest ujemne, czyli zerowanie flagi
|
||||
return true; // true, gdy by³o wczeœniej 1 i zosta³o wyzerowane
|
||||
return true; // true, gdy było wcześniej 1 i zostało wyzerowane
|
||||
}
|
||||
}
|
||||
return false;
|
||||
@@ -342,7 +342,7 @@ std::vector<std::string> Split(const std::string &s, char delim)
|
||||
}
|
||||
|
||||
std::vector<std::string> Split(const std::string &s)
|
||||
{ // dzieli tekst na wektor tekstow po bia³ych znakach
|
||||
{ // dzieli tekst na wektor tekstow po białych znakach
|
||||
std::vector<std::string> elems;
|
||||
std::stringstream ss(s);
|
||||
std::string item;
|
||||
@@ -556,7 +556,7 @@ long Vert(double Y)
|
||||
|
||||
// NOTE: this now does nothing.
|
||||
void ClearPendingExceptions()
|
||||
// resetuje b³êdy FPU, wymagane dla Trunc()
|
||||
// resetuje błędy FPU, wymagane dla Trunc()
|
||||
{
|
||||
; /*?*/ /* ASM
|
||||
FNCLEX
|
||||
|
||||
Reference in New Issue
Block a user