mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 18:07:53 +00:00
General: Resolve warnings related to missing declarations
This commit is contained in:
parent
09eb6f9991
commit
eaeb4520f7
11 changed files with 89 additions and 88 deletions
|
@ -28,7 +28,7 @@ void Fermi2D::CallMethod(const GPU::MethodCall& method_call) {
|
|||
}
|
||||
}
|
||||
|
||||
std::pair<u32, u32> DelimitLine(u32 src_1, u32 src_2, u32 dst_1, u32 dst_2, u32 src_line) {
|
||||
static std::pair<u32, u32> DelimitLine(u32 src_1, u32 src_2, u32 dst_1, u32 dst_2, u32 src_line) {
|
||||
const u32 line_a = src_2 - src_1;
|
||||
const u32 line_b = dst_2 - dst_1;
|
||||
const u32 excess = std::max<s32>(0, line_a - src_line + src_1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue