Eliminada gran cantidad de código sobrante
This commit is contained in:
@@ -165,11 +165,11 @@ void Notify::showText(std::string text1, std::string text2, int icon)
|
||||
}
|
||||
else if (options->notifications.posH == pos_middle)
|
||||
{
|
||||
despH = ((options->screen.windowWidth * options->windowSize) / 2 - (width / 2));
|
||||
despH = ((options->video.windowWidth * options->video.windowSize) / 2 - (width / 2));
|
||||
}
|
||||
else
|
||||
{
|
||||
despH = (options->screen.windowWidth * options->windowSize) - width - padding;
|
||||
despH = (options->video.windowWidth * options->video.windowSize) - width - padding;
|
||||
}
|
||||
|
||||
// Posición vertical
|
||||
@@ -180,7 +180,7 @@ void Notify::showText(std::string text1, std::string text2, int icon)
|
||||
}
|
||||
else
|
||||
{
|
||||
despV = (options->screen.windowHeight * options->windowSize) - height - padding;
|
||||
despV = (options->video.windowHeight * options->video.windowSize) - height - padding;
|
||||
}
|
||||
|
||||
const int travelDist = height + padding;
|
||||
|
||||
Reference in New Issue
Block a user