Skip to content

Commit

Permalink
Fix TTS (#75)
Browse files Browse the repository at this point in the history
# About the pull request

<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

а вдруг?
  • Loading branch information
larentoun authored Feb 7, 2025
1 parent 5f8ff06 commit 3ae55f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/__DEFINES/bandamarines/rust_g.dm
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#define rustutils_cyrillic_to_latin(text) RUSTG_CALL(RUST_UTILS, "cyrillic_to_latin")("[text]")
#define rustutils_latin_to_cyrillic(text) RUSTG_CALL(RUST_UTILS, "latin_to_cyrillic")("[text]")

#define rustg_http_request_blocking(method, url, body, headers, options) RUSTG_CALL(RUST_UTILS, "http_request_blocking")(method, url, body, headers, options)
#define rustg_http_request_async(method, url, body, headers, options) RUSTG_CALL(RUST_UTILS, "http_request_async")(method, url, body, headers, options)
#define rustg_http_check_request(req_id) RUSTG_CALL(RUST_UTILS, "http_check_request")(req_id)
/proc/rustg_create_async_http_client() return RUSTG_CALL(RUST_UTILS, "start_http_client")()
/proc/rustg_close_async_http_client() return RUSTG_CALL(RUST_UTILS, "shutdown_http_client")()
#define rustg_http_request_blocking(method, url, body, headers, options) RUSTG_CALL(RUST_G, "http_request_blocking")(method, url, body, headers, options)
#define rustg_http_request_async(method, url, body, headers, options) RUSTG_CALL(RUST_G, "http_request_async")(method, url, body, headers, options)
#define rustg_http_check_request(req_id) RUSTG_CALL(RUST_G, "http_check_request")(req_id)
/proc/rustg_create_async_http_client() return RUSTG_CALL(RUST_G, "start_http_client")()
/proc/rustg_close_async_http_client() return RUSTG_CALL(RUST_G, "shutdown_http_client")()

0 comments on commit 3ae55f9

Please sign in to comment.