mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-05 18:23:39 -04:00
attempted build fix 1
This commit is contained in:
parent
9149f29c1a
commit
12fa52f636
2 changed files with 3 additions and 3 deletions
|
|
@ -192,7 +192,7 @@ void Cursor::circle(int direction){
|
|||
}
|
||||
offsetArray = rotateVector(offsetArray);
|
||||
|
||||
for (int i = 0; i < offsetArray.size(); i++){
|
||||
for (std::size_t i = 0; i < offsetArray.size(); i++){
|
||||
macroPositions.push_back({rawCursorPos[0]+offsetArray[i][0], rawCursorPos[1]+offsetArray[i][1]});
|
||||
}
|
||||
macroFrames = macroPositions.size();
|
||||
|
|
@ -219,7 +219,7 @@ void Cursor::rub(){
|
|||
offsetArray.push_back({(-0.5f*radius), 0});
|
||||
offsetArray = rotateVector(offsetArray);
|
||||
|
||||
for (int i = 0; i < offsetArray.size(); i++){
|
||||
for (std::size_t i = 0; i < offsetArray.size(); i++){
|
||||
macroPositions.push_back({rawCursorPos[0]+offsetArray[i][0], rawCursorPos[1]+offsetArray[i][1]});
|
||||
}
|
||||
macroFrames = macroPositions.size();
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include "common/common_types.h"
|
||||
#include "core/frontend/framebuffer_layout.h"
|
||||
#include "video_core/rasterizer_interface.h"
|
||||
#include "core\frontend\cursor.h"
|
||||
#include "core/frontend/cursor.h"
|
||||
class Cursor;
|
||||
|
||||
namespace Frontend {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue